@import url(../font/VictorMono/stylesheet.css);
@import url(../font/Inter/stylesheet.css);
:root{ --sh-white: #ffffff; --sh-dark: #000000; --sh-lite-dark: #0000008C; --sh-r-dark: #1E1F1C; --sh-primary-color: #3FDCFF; }
body { margin: 0; font-family: "Victor Mono", monospace; box-sizing: border-box; }
*{ margin: 0; font-family: "Victor Mono", monospace; box-sizing: border-box; }
ul{ list-style-type: none; }
a{ color: var(--sh-primary-color); text-decoration: none; transition: 0.1s all; }
a,p,h1,h2,h3,h4,h5,h6{ padding: 0; font-family: "Victor Mono", monospace; }
a:hover{ color: var(--sh-primary-color); text-decoration: none; }
button{ border: 0; outline: 0; margin: 0; padding: 0; } 
::selection { color: black; background: var(--sh-primary-color); } ::-moz-selection { color: black; background: var(--sh-primary-color); }
#navbar a{
  font-family: "Inter", sans-serif !important;
}
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
.back-to-top {
  display: flex;
  position: fixed;
  /* visibility: hidden; */
  opacity: 1;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--sh-primary-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #151515;
  line-height: 0;
}

.back-to-top:hover {
  background: #151515;
}
.back-to-top svg path {
  fill: var(--sh-dark);
}
.back-to-top:hover svg path {
  fill: var(--sh-white);
}

.back-to-top:hover i {
  color: var(--sh-primary-color);
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}
#about .container {
	position: relative;
	padding-top: 160px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #151515;
  opacity: 1; /* Start fully visible */
  visibility: visible; /* Make sure it's visible initially */
  transition: opacity 1s ease, visibility 0s 1s; /* Transition opacity and visibility */
}
#preloader.hidden {
  opacity: 0; /* Fade out */
  visibility: hidden; /* Hide it completely after fading out */
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 0px);
  left: calc(50% - 30px);
  border: 6px solid var(--sh-primary-color);
  border-top-color: #151515;
  border-bottom-color: #151515;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.menu-toggle {
	display: none;
	font-size: 24px;
	background: none;
	border: none;
	cursor: pointer;
	outline: none;
  color: var(--sh-white);
}
#nav-menu {
	overflow: hidden;
	transition: max-height 0.5s ease-in-out;
}
.header.active-navbar{
  border-radius: 30px;
}
#header {
  transition: all 0.5s ease-in-out;
  z-index: 997;
}
#header.header-scrolled,
#header.header-inner-pages {
  background: rgba(0, 0, 0, 0.8);
}
#header .logo {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
#header .logo a {
  color: var(--sh-white);
}
#header .logo a span {
  color: var(--sh-primary-color);
}
.header{
  background-color: #0000008C;
  border-radius: 0 0 30px 30px;
  padding: 12px 24px;
}

/*--------------------------------------------------------------
#  Get Startet 
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  font-weight: 600;
  color: var(--sh-white);
  white-space: nowrap;
  transition: 0.3s;
  font-size: 20px;
  font-weight: 600;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: var(--sh-primary-color);
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: var(--sh-white);
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  color: #151515;
  font-weight: 400;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  background-color: var(--sh-primary-color);
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
/* navbar */

/*  start css */
input[type="text"],
input[type="email"],
input[type="number"],
input[type="tel"],textarea{
  width: 100%;
  padding: 10px !important;
  border-radius: 5px;
  border: 1px solid var(--sh-primary-color) !important;
  background-color: transparent !important;
  color: var(--sh-white) !important;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 6px;
}
form textarea{
  min-height: 45px !important;
}
::placeholder {
  color: var(--sh-primary-color) !important;
  font-size: 16px;
  font-weight: 400;
}
/* Contact */
.contact [type="submit"] {
	background: var(--sh-primary-color);
	border: 0;
	padding: 10px 24px;
	color: var(--sh-dark);
  font-weight: 700;
	transition: 0.4s;
	border-radius: 4px;
}
.contact [type="submit"]:hover {
  background: var(--sh-white);
  transform: scale(1.05);
}
.form-control:focus {
	box-shadow: 0 0 0 .25rem #3FDCFF1C;
}
.contact .services-titel-wrap h2{
  text-decoration: underline;
}
.contact-form-wrap{
  margin-inline: 210px;
}
.error-message, .error {
  color: red;
}
.sent-message {
  color: #5f5;
  display: none;
}
/* Contact */
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: var(--sh-white);
  overflow-y: auto;
  transition: 0.3s;
}
.section-block-spacing{
  padding-block: 60px;
}
.hero-section .about-us-wrap p{
  padding-inline-start: 18px;
}
.hero-section .about-us-wrap{
  position: relative;
}
/* hero */

#about {
	width: 100%;
	background: url("../images/bg-1.png") top center;
	background-size: cover;
	position: relative;
}
#about h1{
  font-size: 64px;
  font-weight: 600;
  color: var(--sh-white);
}
#about h2{
  font-size: 30px;
  font-weight: 600;
  color: var(--sh-primary-color);
}
.hero-title-font{
  font-size: 40px;
  font-weight: 600;
}
.title-font{
  font-size: 30px;
  font-weight: 700;
}
.paragraph-font{
  font-size: 25px;
  font-weight: 600;
}
.paragraph-font-Services{
  font-size: 16px;
  font-weight: 600;
}
.primary-text-color{
  color: var(--sh-primary-color);
}
.white-text-color{
  color: var(--sh-white);
}
.black-bg-color{
  background-color: var(--sh-lite-dark);
  border-radius: 20px;
  padding: 24px 50px;
}
/* About Us */
.about-us-wrap h5{
  transform: rotate(-90deg);
  transform-origin: center;
  width: 180px;
  position: absolute;
  left: -55px;
  top: 70px;
}
.about-us-img{
  position: relative;
  top: -50px;
  margin-inline: 150px;
}
.digital-consulting{
  padding-bottom: 50px;
}
/* About Us */

/* about */
.about{
  background-image: linear-gradient(to right, #3b1e52 , #1f2f5e);
}
.about .content.black-bg-color.odd{
  padding-left: 250px;
  margin-inline-start: 250px;
}
.image-section:first-child{
  position: absolute;
  top: 50px;
  z-index: 99;
}
.about .content.black-bg-color.even{
  padding-right: 250px;
  margin-inline-end: 250px;
}
.image-section:last-child{
  position: absolute;
  top: 50px;
  right: 0px;
  text-align: end;
  z-index: 99;
}
.about-cover{
  margin-bottom: 120px;
  position: relative;
}
/* about */

/* services */
.services{
  background: url("../images/bg-2.png") top center;
  background-size: cover;
  position: relative;
  display: flex;
}
.services .services-titel-wrap{
  margin: 50px 0px;
}
.services .icon-box .services-img{
  position: relative;
  top: 40px;
}
.services .icon-box .services-content{
  padding-top: 60px;
}
/* services */

/*  Check our Portfolio  */
.portfolio .icon-box{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-align: center;
	position: relative;
}
.portfolio  .icon-box .services-img {
  position: absolute;
  text-align: start;
}
.portfolio .row .col-lg-6.d-flex:nth-child(2n) .icon-box .services-img{
  text-align: end;
}
.portfolio .icon-box .black-bg-color.services-content{
  position: relative;
  padding-top: 24px;
  padding: 24px 18px;
}
.portfolio .col-lg-6{
  height: 340px;
}
.portfolio .col-lg-6 .services-img{
  height: 340px;
}
.portfolio .col-lg-6:nth-child(odd) .services-content{
  margin-inline-start: 325px;
}
.portfolio .col-lg-6:nth-child(even) .services-content{
  margin-inline-end: 325px;
}
.portfolio .col-lg-6:nth-child(odd) .icon-box .services-img {
  left: 0px;
}
.portfolio .col-lg-6:nth-child(even) .icon-box .services-img {
  right: 0px;
}

/*  Check our Portfolio  */

/* Footer */
.footer-wrap{
  margin-block: 40px;
}
.footer-titel-wrap{
  border-radius: 20px 20px 0px 0px;
}
/* Footer */

.portfolio .col-lg-6 .services-img {
	z-index: 6;
}

/* about detail page */
.aboutdetail {
  position: relative;
  display: flex;
  background: url(../images/bg-2.png) center top / cover;
}
.aboutdetail .about-cover {
  margin-bottom: 80px;
}
.aboutdetail .primary-text-color {
  color: var(--sh-primary-color);
  text-align: center;
}
.aboutdetail ul {
  color: #ffffff;
  text-align: justify;
  line-height: 2;
  list-style-type: disc;
}
.aboutdetail ul li
{
  padding: 15px 5px;
}

.aboutdetail ol {
  color: #ffffff;
  text-align: justify;
  line-height: 2;
  list-style-type: decimal;
}
.aboutdetail ol li
{
  padding: 15px 5px;
}
.aboutdetail .black-bg-color {
  background-color: var(--sh-lite-dark);
  border-radius: 20px;
}
/* about */

/* responsive */
@media screen and (max-width:1400px) {
  .about-us-img {
    top: -18px;
  }
  .portfolio .row .services-img img{
    width: 230px !important;
  }
  .portfolio .icon-box .services-img {
    top: 80px;
  }
  .portfolio .col-lg-6:nth-child(2n+1) .services-content {
    margin-inline-start: 215px;
  }
  .portfolio .col-lg-6:nth-child(2n) .services-content {
    margin-inline-end: 215px;
  }
}
@media screen and (max-width:1200px) {
  .footer-wrap img {
    vertical-align: middle;
    width: 45px;
  }
  .footer-wrap .footer-title-content h3 , .footer-wrap .footer-title-content a, .footer-wrap .footer-title-content > div{
    font-size: 20px;
  }
  .hero-title-font {
    font-size: 34px;
  }
  .black-bg-color {
    padding: 18px 30px;
  }
  .services .services-titel-wrap {
    margin: 40px 0px;
  }
  #about h1 {
    font-size: 52px;
  }
  .hero-section .about-us-wrap p {
    padding-inline-start: 48px;
  }
  .paragraph-font {
    font-size: 22px;
  }
  #about h2 {
    font-size: 28px;
  }
  .title-font {
    font-size: 28px;
  }
  .about-us-wrap h5 {
    top: 50px;
  }
  .about-cover {
    margin-bottom: 70px;
  }

  .contact-form-wrap {
    margin-inline: 80px;
  }
  .about-us-img {
    top: -8px;
    margin-inline: 70px;
  }
}
@media screen and (max-width:991px) {
  .container{
    max-width: 840px;
  }
  #about h1 {
    font-size: 42px;
  }
  #about .container {
    position: relative;
    padding-top: 140px;
  }
  .digital-consulting {
    padding-bottom: 30px;
  }
  .about .content.black-bg-color.odd{
    padding-left: 30px;
    margin-inline-start: 0px;
  }
  .about .content.black-bg-color.even{
    padding-right: 30px;
    margin-inline-end: 0px;
  }
  .about-cover{
    flex-wrap: wrap;
  }
  .image-section:first-child, .image-section:last-child {
    position: relative;
    top: 6px;
  }
  .image-section{
    position: relative !important;
    top: 6px !important;
    text-align: center !important;
  }
  .about.section-block-spacing .image-section img{
    width: 280px;
  }
  .hero-title-font {
    font-size: 28px;
  }
  .content {
    text-align: center !important;
  }
  .title-font {
    font-size: 26px;
  }
  .paragraph-font {
    font-size: 18px;
  }
  .black-bg-color {
    padding: 14px 24px;
  }
  .services .services-titel-wrap {
    margin: 30px 0px;
  }
  .content.black-bg-color{
    order: 1;
  }
  .contact-form-wrap {
    margin-inline: 0px;
  }
  .footer-wrap .footer-title-content h3, .footer-wrap .footer-title-content a, .footer-wrap .footer-title-content > div {
    font-size: 16px;
  }
  .about-cover {
    margin-bottom: 30px;
  }
  .about-us-wrap h5 {
    top: 23px;
  }
  .services .services-img img{
    width: 70%;
  }
  .portfolio .col-lg-6:nth-child(2n+1) .services-content {
    margin-inline-start: 0px;
  }
  .portfolio .icon-box .services-img, .portfolio .row .col-lg-6.d-flex:nth-child(2n) .icon-box .services-img {
    top: -10px;
    text-align: center;
  }
  .portfolio .icon-box .black-bg-color.services-content {
    margin-top: 170px;
  }
  .portfolio .col-lg-6:nth-child(2n) .services-content {
    margin-inline-end: 0px;
  }
  .portfolio .col-lg-6 {
    margin-top: 35px;
  }
  .services .services-titel-wrap{
    margin-bottom: 0px;
  }
  .portfolio .col-lg-6:nth-child(2n+1) .icon-box .services-img {
    left: inherit;
  }
  .portfolio .col-lg-6:nth-child(2n) .icon-box .services-img {
    right: inherit;
  }
}
@media screen and (max-width:767px) {
  input[type="text"], input[type="email"], input[type="number"], input[type="tel"], textarea {
    font-size: 14px;
    font-weight: 400;
  }
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
  .container, .container-md, .container-sm {
    max-width: 870px;
  }
  .title-font {
    font-size: 22px;
  }
  .about-us-wrap h5 {
    top: 30px;
  }
  .about.section-block-spacing .image-section img {
    width: 250px;
  }
  .footer-wrap img {
    vertical-align: middle;
    width: 35px;
  }
  .services .services-img img {
    width: 40% !important;
  }
  .footer-wrap .footer-wrap-inner{
    flex-wrap: wrap;
    gap: 10px;
  }
  .about-cover {
    margin-bottom: 30px;
  }
  .title-font {
    font-size: 20px;
  }
  .header a.logo img{
    max-width: 120px;
  }
  .navbar a, .navbar a:focus {
    padding: 10px 0 10px 14px;
    font-size: 16px;
  }
  .image-section {
    top: 2px !important;
  }
  .section-block-spacing {
    padding-block: 40px;
  }
  #about h1 {
    font-size: 32px;
  }
  #about h2 {
    font-size: 22px;
  }
  .portfolio .icon-box .services-img, .portfolio .row .col-lg-6.d-flex:nth-child(2n) .icon-box .services-img {
    top: -10px;
  }
}
@media screen and (max-width:576px) {
  .navbar ul {
    display: none;
    position: relative;
    top: 0px;
    left: 0;
    width: 100%;
  }
  .header {
    border-radius: 30px;
  }
  .footer-wrap .footer-wrap-inner{
    display: inline-grid !important;
  }
  .section-block-spacing {
    padding-block: 30px;
  }
  .paragraph-font {
    font-size: 16px;
  }
  .hero-title-font {
    font-size: 24px;
  }
  .about-us-wrap h5 {
    top: 60px;
  }
  .menu-toggle {
    display: block;
  }
  .nav-inner ul {
    display: none;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: var(--mo-primary-color);
    text-align: center;
    padding: 10px 0;
    margin-top: 5px;
  }
  #nav-menu{
    background:#000000C7;
    text-align: center;
    padding: 10px 0;
    margin-top: 5px;
    margin-inline: 12px;
    border-radius: 30px;
  }
  #navbar{
    position: absolute;
    top: 70px;
    width: 100%;
    right: 0;
    left: 0;
  }
  .navbar a, .navbar a:focus {
    justify-content: center;
  }
  #about h1 {
    font-size: 30px;
  }
  .hero-section .about-us-wrap p {
    padding-inline-start: 32px;
  }
  .about-us-img {
    margin-inline: 55px;
  }
  .portfolio .icon-box .services-img, .portfolio .row .col-lg-6.d-flex:nth-child(2n) .icon-box .services-img {
    top: 30px;
  }
  .portfolio .row .services-img img {
    width: 55% !important;
  }
}